Xceed Real-Time Zip for .NET Documentation
Xceed.Zip Assembly / Xceed.Zip.ReaderWriter Namespace / ZipWriter Class / WriteItemData Method / WriteItemData(Byte[],Int32,Int32) Method
An array of bytes. This method copies count bytes from buffer to the ZipWriter object's stream.
The zero-based byte offset in buffer at which to begin copying bytes to the ZipWriter object's stream.
The number of bytes to be written to the ZipWriter object's stream.


In This Topic
    WriteItemData(Byte[],Int32,Int32) Method
    In This Topic
    Writes a sequence of bytes to the ZipWriter object's stream and advances the position within the stream by the number of bytes written.
    Syntax
    'Declaration
     
    Public Overloads Sub WriteItemData( _
       ByVal buffer() As Byte, _
       ByVal offset As Integer, _
       ByVal count As Integer _
    ) 
    'Usage
     
    Dim instance As ZipWriter
    Dim buffer() As Byte
    Dim offset As Integer
    Dim count As Integer
     
    instance.WriteItemData(buffer, offset, count)
    public void WriteItemData( 
       byte[] buffer,
       int offset,
       int count
    )

    Parameters

    buffer
    An array of bytes. This method copies count bytes from buffer to the ZipWriter object's stream.
    offset
    The zero-based byte offset in buffer at which to begin copying bytes to the ZipWriter object's stream.
    count
    The number of bytes to be written to the ZipWriter object's stream.
    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also